.modal{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .8);
	display: none;
	z-index: 1000;
}
.modal-body{
	width: 90%;
	max-width: 400px;
	background: #fff;
	padding: 40px;
	border: 3px solid #8de070;
	border-radius: 8px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.modal-close{
	position: absolute;
	right: 0;
	top: 0;
	width: 30px;
	height: 30px;
	cursor: pointer;
	font-size: 35px;
}
.modal-body-title{
	text-align: center;
	font-size: 26px;
	margin-bottom: 20px;
}
.modal-body-descr{
	text-align: center;
	margin-bottom: 20px;
}
.modal-body-form{}
.modal-body-form form{
	width: 100%;
}
.modal-body-form input{
	width: 100%;
	padding: 0 15px;
    height: 40px;
    background: #f3f4f6;
    outline: none;
    color: #666;
    font-size: 13px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
    border: 1px solid #eaecee;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-bottom: 10px;
}
.modal-body-form input:hover,
.modal-body-form input:focus{
	background: #fff;
}
.modal-body-form button{
	background: #f24954;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1;
    font-family: Arial, Helvetica, sans-serif;
    text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 16px 15px 16px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    border: 2px solid #f24954;
    width: 100%;
    outline: none;
}
.modal-body-form button:hover{
	background: transparent;
	color: #f24954;
}
input[name="laga"]{
	display: none;
}
.error__message{
	height: 0;
	font-size: 11px;
	color: red;
}
.title .mini{
	font-size: 70%;
	display: block;
	font-weight: 400;
}

@media(max-width: 390px){
	.modal-body{
		padding: 30px 25px;
	}
	.modal-body-title{
		margin-bottom: 10px;
	}
}